home *** CD-ROM | disk | FTP | other *** search
/ Aminet 41 / Aminet 41 (2001)(Schatztruhe)[!][Feb 2001].iso / Aminet / comm / misc / ClipWatch.lha / ClipWatch / Sources / trsii.h < prev    next >
C/C++ Source or Header  |  2000-12-29  |  1KB  |  88 lines

  1.  
  2. #define NBR_MESSAGESBOX 8
  3. #define NBR_RESSOURCES 256
  4. #define NBR_TRACES 81
  5.  
  6. #define LGT_LIBELLE_RESS 40
  7. #define LGT_ETAT_RESS 30
  8.  
  9. #define MONITOR_IN 1
  10. #define MONITOR_OUT 2
  11.  
  12. #define RFH_IDENTITE 1
  13. #define RFH_DATE 2
  14. #define RFH_TIME 3
  15. #define RFH_LIBELLE_RESS 4
  16. #define RFH_ETAT_RESS 5 
  17. #define RFH_JOURNAL 6
  18. #define RFH_PARAM_TRACE 7
  19. #define RFH_TRACE 8
  20. #define RFH_MESSAGEBOX 9
  21.  
  22. struct InfosTeletrans
  23. {
  24.  char SiteName[33];
  25.  char Type[20];
  26.  char Version[5];
  27.  char TRSII_Extended_Clip;
  28.  int NumRessourcesMax;
  29.  int NumTracesMax;
  30.  char LocalDate[12];
  31.  char LocalTime[12];
  32.  char NumTel[32];
  33.  char Password[16];
  34. };
  35. struct Ressources
  36. {
  37.  char Libelle[LGT_LIBELLE_RESS];
  38.  char Etat[LGT_ETAT_RESS];
  39. };
  40. struct Evenements
  41. {
  42.  char Index[10];
  43.  char Date[20];
  44.  char NumRess[4];
  45.  char LibelleRess[40];
  46.  char EtatRess[20];
  47.  char Classe[2];
  48.  char Zone[2];
  49.  char Code[2];
  50. };
  51. struct Traces
  52. {
  53.  char NumMenu[6];
  54.  char Libelle[LGT_LIBELLE_RESS];
  55.  char Used;
  56.  int Delay;
  57. };
  58. struct AffiTraceNum
  59. {
  60.  char Date[15];
  61.  char Heure[12];
  62.  char Valeur[20];
  63. };
  64.  
  65. struct Str_AffiGraphGene
  66. {
  67.  time_t Time32Deb;
  68.  time_t Time32Fin;
  69. };
  70.  
  71. struct Str_AffiTraceGraph
  72. {
  73.  time_t * Horodates;
  74.  double * Valeurs;
  75.  long NbrSamples;
  76.  char Unite[10];
  77.  double EchelleMin;
  78.  double EchelleMax;
  79.  double CoeffAX;
  80.  double CoeffBX;
  81.  double CoeffAY;
  82.  double CoeffBY;
  83.  double YMin;
  84.  double YMax;
  85. };
  86.  
  87.  
  88.